home *** CD-ROM | disk | FTP | other *** search
/ Interactive Web Graphics with Shout 3D / Interactive Web Graphics With Shout 3D.iso / mac / Shout3Ddemo / Shout3d_runtime / codebase / applets / MultiTestApplet.java < prev    next >
Text File  |  2000-09-01  |  681b  |  31 lines

  1. /**    
  2.     Company:        Eyematic Interfaces
  3.     Project:        Shout3D 2.0 Sample Code
  4.     Class:            MultiTestApplet
  5.      Date:            April 26, 1999
  6.     Description:    Class for Applet that tests lots of features. Press '?' for Java Panel instructions
  7.     (C) Copyright Eyematic Interfaces, Inc. - 1997-2000 - All rights reserved
  8.  */
  9.  
  10. package applets;
  11.  
  12. import shout3d.*;
  13.  
  14. /**
  15.  * Shout3D MultiTestApplet
  16.  *     
  17.  * Tests lots of features. Press '?' for Java Panel instructions
  18.  * 
  19.  * @author Paul Isaacs
  20.  * @author Jim Stewartson
  21.  * @author Dave Westwood
  22.  */
  23.  
  24. public class MultiTestApplet extends Shout3DApplet {
  25.  
  26.     public void initShout3DPanel(){
  27.         panel = new MultiTestPanel(this);
  28.     }
  29.     
  30. }
  31.